home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
libs
/
knowhow4
/
prn_page.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1994-10-10
|
822b
|
25 lines
#include "prn_page.h"
PAGE_LAYOUT::PAGE_LAYOUT(int p_band_top, int p_band_bottom, int t_band_top,
int t_band_bottom, int r_band_top, int r_band_bottom,
ADD_LIST* p_top_info, ADD_LIST* p_bottom_info, ADD_LIST* t_top_info,
ADD_LIST* t_bottom_info, ADD_LIST* r_top_info,
ADD_LIST* r_bottom_info,
RECORD_LAYOUT* rec)
{
page_band_top = p_band_top;
page_band_bottom = p_band_bottom;
table_band_top = t_band_top;
table_band_bottom = t_band_bottom;
record_band_top = r_band_top;
record_band_bottom = r_band_bottom;
pg_top_info = p_top_info;
pg_bottom_info = p_bottom_info;
tb_top_info = t_top_info;
tb_bottom_info = t_bottom_info;
rc_top_info = r_top_info;
rc_bottom_info = r_bottom_info;
record = rec;
}
//////////////////////////////////